Advertisements
Category: 21
$.get( "/op/htmlgames/ajax_loadmoregames.php?ids=1&num=1&LoadedGamesNum=2&id="+window.location.hash.split('#')[1], function( data ) {
//$( ".getngam" ).prepend( data );
var columnWidthValue = 185;
let isMobile = window.matchMedia("only screen and (max-width: 600px)").matches;
if (isMobile) {
columnWidthValue = 105;
$('.post').width(95);
$('.post-trick').width(100+'%');
$('.ad-desc-left').hide();
$('.ad-desc-right').hide();
}
if(typeof Masonry === 'function'){
var $container = $('#content');
$container.masonry({
itemSelector: '.post',
columnWidth: columnWidthValue,
isFitWidth: true,
animate: true
});
}
var $items = $(data);
$container.prepend($items).masonry('prepended', $items);
// $container.prepend(data).masonry('prepended', data);
});
*/ ?>